home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / stat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  200 b   |  12 lines

  1. #include "lib.h"
  2. #include <sys/stat.h>
  3.  
  4. PUBLIC int stat(name, buffer)
  5. _CONST char *name;
  6. struct stat *buffer;
  7. {
  8.   int n;
  9.   n = callm1(FS, STAT, len(name), 0, 0, name, buffer, NIL_PTR);
  10.   return(n);
  11. }
  12.